home *** CD-ROM | disk | FTP | other *** search
/ Gekkan Dennou Club 147 / Gekkan Dennou Club - 2000.8 Vol. 147 (Japan).7z / Gekkan Dennou Club - 2000.8 Vol. 147 (Japan) (Track 1).bin / docs / ippon / ver / 013 / ippon013.lzh / makefile < prev    next >
Makefile  |  2000-07-07  |  814b  |  35 lines

  1. #    makefile for ippon.x
  2.  
  3. CC    = gcc
  4. CFLAGS    = -DDEBUG
  5. #CFLAGS    = -O -fomit-frame-pointer -fstrength-reduce -fforce-mem -fforce-addr -fcombine-regs
  6. AS    = has
  7. LD    = hlk
  8. INC    =
  9. LIBS    = libc.a libgnu.a libdos.a libiocs.a xsp2lib.o
  10. LZH    = ippon011
  11.  
  12. %.o:    %.c
  13.     $(CC) $(CFLAGS) -c $<
  14.  
  15. all:    ippon.x maketbl.x
  16.  
  17. ippon.x:    main.o player.o shot.o enemy.o eshot.o effect.o psearch.o
  18.     $(LD) $^ -o $@ -l $(LIBS)
  19.  
  20. main.o:    main.c main.h player.h shot.h enemy.h eshot.h effect.h
  21. player.o:    player.c main.h player.h shot.h
  22. shot.o:    shot.c main.h player.h shot.h
  23. enemy.o:    enemy.c main.h player.h shot.h enemy.h effect.h
  24. eshot.o:    eshot.c main.h player.h eshot.h
  25. effect.o:    effect.c main.h effect.h
  26. psearch.o:    psearch.c player.h psearch.h
  27.  
  28. maketbl.x:    maketbl.o
  29.     $(LD) $^ -o $@ -l $(LIBS)
  30.  
  31.  
  32. dist:
  33.     LHA a -t ../$(LZH)
  34.  
  35.